home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Development / Source / NewMaxwell / Original Maxwell / ball.h next >
Encoding:
Text File  |  1994-02-03  |  360 b   |  12 lines  |  [TEXT/KAHL]

  1. typedef struct particle {
  2.     long x,y;                /* location */
  3.     long vx, vy;            /* velocity */
  4.     int    pict;                /* which picture this ball is */
  5. } ball;
  6.  
  7. #define    GRAD    6            /* radius for drawing (quickdraw units) */
  8. #define    CRAD    28            /* radius for collision (box units) */
  9. #define    SDIM    (2*GRAD)    /* diameter on screen */
  10.  
  11. #define    SLOW    225            /* max v squared for slow ball */
  12.